home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 4 / BBS in a Box - Macintosh - Volume IV (January 1992) (BBS in a Box).iso / Files / Prog / T / TransSkel2p.cpt / TransSkel ƒ.np / MultiSkel ƒ / MultiSkelglobals.p < prev   
Encoding:
Text File  |  1988-12-09  |  474 b   |  27 lines  |  [TEXT/PJMM]

  1. unit MultiSkelglobals;
  2.  
  3. interface
  4. {$IFC UNDEFINED THINK_PASCAL}
  5.     uses
  6.         Memtypes, Quickdraw, OSIntf, ToolIntf, PackIntf, 
  7. {$ENDC}
  8.  
  9. { Resource Numbers    }
  10.  
  11.     const
  12.         aboutAlrt = 1000;
  13.         getInfoDlog = 1001;
  14.         fileMenuRes = 1001;
  15.         editMenuRes = 1002;
  16.         helpWindRes = 1000;
  17.         editWindRes = 1001;
  18.         zoomWindRes = 1002;
  19.         rgnWindRes = 1003;
  20.         helpTextRes = 1000;
  21.  
  22.     var
  23.         editMenu: MenuHandle;
  24.         helpWind, editWind, zoomWind, rgnWind: WindowPtr;
  25.         dummy: Boolean;
  26. implementation
  27. end.